| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 6 | ||
| Bugs | 6 | Features | 0 |
| 1 | |||
| 10 | constructor() { |
||
| 11 | this.bDisabeCloseOnEsc = false; |
||
| 12 | this.sDefaultKeyScope = KeyState.None; |
||
| 13 | this.sCurrentKeyScope = this.sDefaultKeyScope; |
||
| 14 | |||
| 15 | this.viewModelVisibility = ko.observable(false); |
||
| 16 | this.modalVisibility = ko.observable(false).extend({rateLimit: 0}); |
||
| 17 | |||
| 18 | this.viewModelName = ''; |
||
| 19 | this.viewModelNames = []; |
||
| 20 | this.viewModelDom = null; |
||
| 21 | } |
||
| 22 | |||
| 65 |